home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_usrdoc / GNU-MAKE / NEWS.{__ < prev    next >
Text File  |  1999-09-17  |  25KB  |  631 lines

  1. GNU make NEWS                                               -*-indented-text-*-
  2.   History of user-visible changes.
  3.   19 Sep 1997
  4.  
  5. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
  6. See the end for copying conditions.
  7.  
  8. Please send GNU make bug reports to bug-gnu-utils@prep.ai.mit.edu.
  9.  
  10. Version 3.76.1
  11.  
  12. * Small (but serious) bug fix.  Quick rollout to get into the GNU source CD.
  13.  
  14. Version 3.76
  15.  
  16. * GNU make now uses automake to control Makefile.in generation.  This
  17.   should make it more consistent with the GNU standards.
  18.  
  19. * VPATH functionality has been changed to incorporate the VPATH+ patch,
  20.   previously maintained by Paul Smith <psmith@baynetworks.com>.  See the
  21.   manual.
  22.  
  23. * Make defines a new variable, `MAKECMDGOALS', to contain the goals that
  24.   were specified on the command line, if any.  Modifying this variable
  25.   has no effect on the operation of make.
  26.  
  27. * A new function, `$(wordlist S,E,TEXT)', is available: it returns a
  28.   list of words from number S to number E (inclusive) of TEXT.
  29.  
  30. * Instead of an error, detection of future modification times gives a
  31.   warning and continues.  The warning is repeated just before GNU make
  32.   exits, so it is less likely to be lost.
  33.  
  34. * Fix the $(basename) and $(suffix) functions so they only operate on
  35.   the last filename, not the entire string:
  36.  
  37.       Command              Old Result             New Result
  38.       -------              ----------             ----------
  39.     $(basename a.b)        a                      a
  40.     $(basename a.b/c)      a                      a.b/c
  41.     $(suffix a.b)          b                      b
  42.     $(suffix a.b/c)        b/c                    <empty>
  43.  
  44. * The $(strip) function now removes newlines as well as TABs and spaces.
  45.  
  46. * The $(shell) function now changes CRLF (\r\n) pairs to a space as well
  47.   as newlines (\n).
  48.  
  49. * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32).
  50.  
  51. * Eli Zaretskii has updated the port to 32-bit protected mode on MSDOS
  52.   and MS-Windows, building with the DJGPP v2 port of GNU C/C++ compiler
  53.   and utilities.  See README.DOS for details, and direct all questions
  54.   concerning this port to Eli Zaretskii <eliz@is.elta.co.il> or DJ
  55.   Delorie <dj@delorie.com>.
  56.  
  57. * John W. Eaton has updated the VMS port to support libraries and VPATH.
  58.  
  59. Version 3.75
  60.  
  61. * The directory messages printed by `-w' and implicitly in sub-makes,
  62.   are now omitted if Make runs no commands and has no other messages to print.
  63.  
  64. * Make now detects files that for whatever reason have modification times
  65.   in the future and gives an error.  Files with such impossible timestamps
  66.   can result from unsynchronized clocks, or archived distributions
  67.   containing bogus timestamps; they confuse Make's dependency engine
  68.   thoroughly.
  69.  
  70. * The new directive `sinclude' is now recognized as another name for
  71.   `-include', for compatibility with some other Makes.
  72.  
  73. * Aaron Digulla has contributed a port to AmigaDOS.  See README.Amiga for
  74.   details, and direct all Amiga-related questions to <digulla@fh-konstanz.de>.
  75.  
  76. * Rob Tulloh of Tivoli Systems has contributed a port to Windows NT or 95.
  77.   See README.W32 for details, and direct all Windows-related questions to
  78.   <rob_tulloh@tivoli.com>.
  79.  
  80. Version 3.73
  81.  
  82. * Converted to use Autoconf version 2, so `configure' has some new options.
  83.   See INSTALL for details.
  84.  
  85. * You can now send a SIGUSR1 signal to Make to toggle printing of debugging
  86.   output enabled by -d, at any time during the run.
  87.  
  88. Version 3.72
  89.  
  90. * DJ Delorie has ported Make to MS-DOS using the GO32 extender.
  91.   He is maintaining the DOS port, not the GNU Make maintainer;
  92.   please direct bugs and questions for DOS to <djgpp@sun.soe.clarkson.edu>.
  93.   MS-DOS binaries are available for FTP from ftp.simtel.net in
  94.   /pub/simtelnet/gnu/djgpp/.
  95.  
  96. * The `MAKEFLAGS' variable (in the environment or in a makefile) can now
  97.   contain variable definitions itself; these are treated just like
  98.   command-line variable definitions.  Make will automatically insert any
  99.   variable definitions from the environment value of `MAKEFLAGS' or from
  100.   the command line, into the `MAKEFLAGS' value exported to children.  The
  101.   `MAKEOVERRIDES' variable previously included in the value of `$(MAKE)'
  102.   for sub-makes is now included in `MAKEFLAGS' instead.  As before, you can
  103.   reset `MAKEOVERRIDES' in your makefile to avoid putting all the variables
  104.   in the environment when its size is limited.
  105.  
  106. * If `.DELETE_ON_ERROR' appears as a target, Make will delete the target of
  107.   a rule if it has changed when its commands exit with a nonzero status,
  108.   just as when the commands get a signal.
  109.  
  110. * The automatic variable `$+' is new.  It lists all the dependencies like
  111.   `$^', but preserves duplicates listed in the makefile.  This is useful
  112.   for linking rules, where library files sometimes need to be listed twice
  113.   in the link order.
  114.  
  115. * You can now specify the `.IGNORE' and `.SILENT' special targets with
  116.   dependencies to limit their effects to those files.  If a file appears as
  117.   a dependency of `.IGNORE', then errors will be ignored while running the
  118.   commands to update that file.  Likewise if a file appears as a dependency
  119.   of `.SILENT', then the commands to update that file will not be printed
  120.   before they are run.  (This change was made to conform to POSIX.2.)
  121.  
  122. Version 3.71
  123.  
  124. * The automatic variables `$(@D)', `$(%D)', `$(*D)', `$(<D)', `$(?D)', and
  125.   `$(^D)' now omit the trailing slash from the directory name.  (This change
  126.   was made to comply with POSIX.2.)
  127.  
  128. * The source distribution now includes the Info files for the Make manual.
  129.   There is no longer a separate distribution containing Info and DVI files.
  130.  
  131. * You can now set the variables `binprefix' and/or `manprefix' in
  132.   Makefile.in (or on the command line when installing) to install GNU make
  133.   under a name other than `make' (i.e., ``make binprefix=g install''
  134.   installs GNU make as `gmake').
  135.  
  136. * The built-in Texinfo rules use the new variables `TEXI2DVI_FLAGS' for
  137.   flags to the `texi2dvi' script, and `MAKEINFO_FLAGS' for flags to the
  138.   Makeinfo program.
  139.  
  140. * The exit status of Make when it runs into errors is now 2 instead of 1.
  141.   The exit status is 1 only when using -q and some target is not up to date.
  142.   (This change was made to comply with POSIX.2.)
  143.  
  144. Version 3.70
  145.  
  146. * It is no longer a fatal error to have a NUL character in a makefile.
  147.   You should never put a NUL in a makefile because it can have strange
  148.   results, but otherwise empty lines full of NULs (such as produced by
  149.   the `xmkmf' program) will always work fine.
  150.  
  151. * The error messages for nonexistent included makefiles now refer to the
  152.   makefile name and line number where the `include' appeared, so Emacs's
  153.   C-x ` command takes you there (in case it's a typo you need to fix).
  154.  
  155. Version 3.69
  156.  
  157. * Implicit rule search for archive member references is now done in the
  158.   opposite order from previous versions: the whole target name `LIB(MEM)'
  159.   first, and just the member name and parentheses `(MEM)' second.
  160.  
  161. * Make now gives an error for an unterminated variable or function reference.
  162.   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
  163.  
  164. * The new default variable `MAKE_VERSION' gives the version number of
  165.   Make, and a string describing the remote job support compiled in (if any).
  166.   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
  167.  
  168. * Commands in an invocation of the `shell' function are no longer run with
  169.   a modified environment like target commands are.  As in versions before
  170.   3.68, they now run with the environment that `make' started with.  We
  171.   have reversed the change made in version 3.68 because it turned out to
  172.   cause a paradoxical situation in cases like:
  173.  
  174.     export variable = $(shell echo value)
  175.  
  176.   When Make attempted to put this variable in the environment for a target
  177.   command, it would try expand the value by running the shell command
  178.   `echo value'.  In version 3.68, because it constructed an environment
  179.   for that shell command in the same way, Make would begin to go into an
  180.   infinite loop and then get a fatal error when it detected the loop.
  181.  
  182. * The commands given for `.DEFAULT' are now used for phony targets with no
  183.   commands.
  184.  
  185. Version 3.68
  186.  
  187. * You can list several archive member names inside parenthesis:
  188.   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
  189.  
  190. * You can use wildcards inside archive member references.  For example,
  191.   `lib(*.o)' expands to all existing members of `lib' whose names end in
  192.   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
  193.   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
  194.   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
  195.  
  196. * A suffix rule `.X.a' now produces two pattern rules:
  197.     (%.o): %.X    # Previous versions produced only this.
  198.     %.a: %.X    # Now produces this as well, just like other suffixes.
  199.  
  200. * The new flag `--warn-undefined-variables' says to issue a warning message
  201.   whenever Make expands a reference to an undefined variable.
  202.  
  203. * The new `-include' directive is just like `include' except that there is
  204.   no error (not even a warning) for a nonexistent makefile.
  205.  
  206. * Commands in an invocation of the `shell' function are now run with a
  207.   modified environment like target commands are, so you can use `export' et
  208.   al to set up variables for them.  They used to run with the environment
  209.   that `make' started with.
  210.  
  211. Version 3.66
  212.  
  213. * `make --version' (or `make -v') now exits immediately after printing
  214.   the version number.
  215.  
  216. Version 3.65
  217.  
  218. * Make now supports long-named members in `ar' archive files.
  219.  
  220. Version 3.64
  221.  
  222. * Make now supports the `+=' syntax for a variable definition which appends
  223.   to the variable's previous value.  See the section `Appending More Text
  224.   to Variables' in the manual for full details.
  225.  
  226. * The new option `--no-print-directory' inhibits the `-w' or
  227.   `--print-directory' feature.  Make turns on `--print-directory'
  228.   automatically if you use `-C' or `--directory', and in sub-makes; some
  229.   users have found this behavior undesirable.
  230.  
  231. * The built-in implicit rules now support the alternative extension
  232.   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
  233.  
  234. Version 3.63
  235.  
  236. * Make now uses a standard GNU `configure' script.  See the new file
  237.   INSTALL for the new (and much simpler) installation procedure.
  238.  
  239. * There is now a shell script to build Make the first time, if you have no
  240.   other `make' program.  `build.sh' is created by `configure'; see README.
  241.  
  242. * GNU Make now completely conforms to the POSIX.2 specification for `make'.
  243.  
  244. * Elements of the `$^' and `$?' automatic variables that are archive
  245.   member references now list only the member name, as in Unix and POSIX.2.
  246.  
  247. * You should no longer ever need to specify the `-w' switch, which prints
  248.   the current directory before and after Make runs.  The `-C' switch to
  249.   change directory, and recursive use of Make, now set `-w' automatically.
  250.  
  251. * Multiple double-colon rules for the same target will no longer have their
  252.   commands run simultaneously under -j, as this could result in the two
  253.   commands trying to change the file at the same time and interfering with
  254.   one another.
  255.  
  256. * The `SHELL' variable is now never taken from the environment.
  257.   Each makefile that wants a shell other than the default (/bin/sh) must
  258.   set SHELL itself.  SHELL is always exported to child processes.
  259.   This change was made for compatibility with POSIX.2.
  260.  
  261. * Make now accepts long options.  There is now an informative usage message
  262.   that tells you what all the options are and what they do.  Try `make --help'.
  263.  
  264. * There are two new directives: `export' and `unexport'.  All variables are
  265.   no longer automatically put into the environments of the commands that
  266.   Make runs.  Instead, only variables specified on the command line or in
  267.   the environment are exported by default.  To export others, use:
  268.     export VARIABLE
  269.   or you can define variables with:
  270.     export VARIABLE = VALUE
  271.   or:
  272.     export VARIABLE := VALUE
  273.   You can use just:
  274.     export
  275.   or:
  276.     .EXPORT_ALL_VARIABLES:
  277.   to get the old behavior.  See the node `Variables/Recursion' in the manual
  278.   for a full description.
  279.  
  280. * The commands from the `.DEFAULT' special target are only applied to
  281.   targets which have no rules at all, not all targets with no commands.
  282.   This change was made for compatibility with Unix make.
  283.  
  284. * All fatal error messages now contain `***', so they are easy to find in
  285.   compilation logs.
  286.  
  287. * Dependency file names like `-lNAME' are now replaced with the actual file
  288.   name found, as with files found by normal directory search (VPATH).
  289.   The library file `libNAME.a' may now be found in the current directory,
  290.   which is checked before VPATH; the standard set of directories (/lib,
  291.   /usr/lib, /usr/local/lib) is now checked last.
  292.   See the node `Libraries/Search' in the manual for full details.
  293.  
  294. * A single `include' directive can now specify more than one makefile to
  295.   include, like this:
  296.     include file1 file2
  297.   You can also use shell file name patterns in an `include' directive:
  298.     include *.mk
  299.  
  300. * The default directories to search for included makefiles, and for
  301.   libraries specified with `-lNAME', are now set by configuration.
  302.  
  303. * You can now use blanks as well as colons to separate the directories in a
  304.   search path for the `vpath' directive or the `VPATH' variable.
  305.  
  306. * You can now use variables and functions in the left hand side of a
  307.   variable assignment, as in "$(foo)bar = value".
  308.  
  309. * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
  310.   The `MAKE_COMMAND' variable is now defined to the name with which make
  311.   was invoked.
  312.  
  313. * The built-in rules for C++ compilation now use the variables `$(CXX)' and
  314.   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
  315.   problems with shells that cannot have `+' in environment variable names.
  316.  
  317. * The value of a recursively expanded variable is now expanded when putting
  318.   it into the environment for child processes.  This change was made for
  319.   compatibility with Unix make.
  320.  
  321. * A rule with no targets before the `:' is now accepted and ignored.
  322.   This change was made for compatibility with SunOS 4 make.
  323.   We do not recommend that you write your makefiles to take advantage of this.
  324.  
  325. * The `-I' switch can now be used in MAKEFLAGS, and are put there
  326.   automatically just like other switches.
  327.  
  328. Version 3.61
  329.  
  330. * Built-in rules for C++ source files with the `.C' suffix.
  331.   We still recommend that you use `.cc' instead.
  332.  
  333. * If commands are given too many times for a single target,
  334.   the last set given is used, and a warning message is printed.
  335.  
  336. * Error messages about makefiles are in standard GNU error format,
  337.   so C-x ` in Emacs works on them.
  338.  
  339. * Dependencies of pattern rules which contain no % need not actually exist
  340.   if they can be created (just like dependencies which do have a %).
  341.  
  342. Version 3.60
  343.  
  344. * A message is always printed when Make decides there is nothing to be done.
  345.   It used to be that no message was printed for top-level phony targets
  346.   (because "`phony' is up to date" isn't quite right).  Now a different
  347.   message "Nothing to be done for `phony'" is printed in that case.
  348.  
  349. * Archives on AIX now supposedly work.
  350.  
  351. * When the commands specified for .DEFAULT are used to update a target,
  352.   the $< automatic variable is given the same value as $@ for that target.
  353.   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
  354.  
  355. Version 3.59
  356.  
  357. * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
  358.   variables while remaking makefiles, so recursive makes done while remaking
  359.   makefiles will behave properly.
  360.  
  361. * If the special target `.NOEXPORT' is specified in a makefile,
  362.   only variables that came from the environment and variables
  363.   defined on the command line are exported.
  364.  
  365. Version 3.58
  366.  
  367. * Suffix rules may have dependencies (which are ignored).
  368.  
  369. Version 3.57
  370.  
  371. * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
  372.   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
  373.  
  374. Version 3.55
  375.  
  376. * There is now a Unix man page for GNU Make.  It is certainly not a replacement
  377. for the Texinfo manual, but it documents the basic functionality and the
  378. switches.  For full documentation, you should still read the Texinfo manual.
  379. Thanks to Dennis Morse of Stanford University for contributing the initial
  380. version of this.
  381.  
  382. * Variables which are defined by default (e.g., `CC') will no longer be put
  383. into the environment for child processes.  (If these variables are reset by the
  384. environment, makefiles, or the command line, they will still go into the
  385. environment.)
  386.  
  387. * Makefiles which have commands but no dependencies (and thus are always
  388.   considered out of date and in need of remaking), will not be remade (if they
  389.   were being remade only because they were makefiles).  This means that GNU
  390.   Make will no longer go into an infinite loop when fed the makefiles that
  391.   `imake' (necessary to build X Windows) produces.
  392.  
  393. * There is no longer a warning for using the `vpath' directive with an explicit
  394. pathname (instead of a `%' pattern).
  395.  
  396. Version 3.51
  397.  
  398. * When removing intermediate files, only one `rm' command line is printed,
  399. listing all file names.
  400.  
  401. * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
  402. These are the directory-only and file-only versions of `$^' and `$?'.
  403.  
  404. * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
  405. directory if it exists.
  406.  
  407. * The automatic variable `$($/)' is no longer defined.
  408.  
  409. * Leading `+' characters on a command line make that line be executed even
  410. under -n, -t, or -q (as if the line contained `$(MAKE)').
  411.  
  412. * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
  413. only those lines are executed, not their entire rules.
  414. (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
  415.  
  416. Version 3.50
  417.  
  418. * Filenames in rules will now have ~ and ~USER expanded.
  419.  
  420. * The `-p' output has been changed so it can be used as a makefile.
  421. (All information that isn't specified by makefiles is prefaced with comment
  422. characters.)
  423.  
  424. Version 3.49
  425.  
  426. * The % character can be quoted with backslash in implicit pattern rules,
  427. static pattern rules, `vpath' directives, and `patsubst', `filter', and
  428. `filter-out' functions.  A warning is issued if a `vpath' directive's
  429. pattern contains no %.
  430.  
  431. * The `wildcard' variable expansion function now expands ~ and ~USER.
  432.  
  433. * Messages indicating failed commands now contain the target name:
  434.     make: *** [target] Error 1
  435.  
  436. * The `-p' output format has been changed somewhat to look more like
  437. makefile rules and to give all information that Make has about files.
  438.  
  439. Version 3.48
  440.  
  441. Version 3.47
  442.  
  443. * The `-l' switch with no argument removes any previous load-average limit.
  444.  
  445. * When the `-w' switch is in effect, and Make has updated makefiles,
  446. it will write a `Leaving directory' messagfe before re-executing itself.
  447. This makes the `directory change tracking' changes to Emacs's compilation
  448. commands work properly.
  449.  
  450. Version 3.46
  451.  
  452. * The automatic variable `$*' is now defined for explicit rules,
  453. as it is in Unix make.
  454.  
  455. Version 3.45
  456.  
  457. * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
  458. specified without an argument (indicating infinite jobs).
  459. The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
  460.  
  461. * Make no longer checks hashed directories after running commands.
  462. The behavior implemented in 3.41 caused too much slowdown.
  463.  
  464. Version 3.44
  465.  
  466. * A dependency is NOT considered newer than its dependent if
  467. they have the same modification time.  The behavior implemented
  468. in 3.43 conflicts with RCS.
  469.  
  470. Version 3.43
  471.  
  472. * Dependency loops are no longer fatal errors.
  473.  
  474. * A dependency is considered newer than its dependent if
  475. they have the same modification time.
  476.  
  477. Version 3.42
  478.  
  479. * The variables F77 and F77FLAGS are now set by default to $(FC) and
  480. $(FFLAGS).  Makefiles designed for System V make may use these variables in
  481. explicit rules and expect them to be set.  Unfortunately, there is no way to
  482. make setting these affect the Fortran implicit rules unless FC and FFLAGS
  483. are not used (and these are used by BSD make).
  484.  
  485. Version 3.41
  486.  
  487. * Make now checks to see if its hashed directories are changed by commands.
  488. Other makes that hash directories (Sun, 4.3 BSD) don't do this.
  489.  
  490. Version 3.39
  491.  
  492. * The `shell' function no longer captures standard error output.
  493.  
  494. Version 3.32
  495.  
  496. * A file beginning with a dot can be the default target if it also contains
  497. a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
  498.  
  499. Version 3.31
  500.  
  501. * Archive member names are truncated to 15 characters.
  502.  
  503. * Yet more USG stuff.
  504.  
  505. * Minimal support for Microport System V (a 16-bit machine and a
  506. brain-damaged compiler).  This has even lower priority than other USG
  507. support, so if it gets beyond trivial, I will take it out completely.
  508.  
  509. * Revamped default implicit rules (not much visible change).
  510.  
  511. * The -d and -p options can come from the environment.
  512.  
  513. Version 3.30
  514.  
  515. * Improved support for USG and HPUX (hopefully).
  516.  
  517. * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
  518. equivalent to `$(patsubst a,b,$(foo))'.
  519.  
  520. * Defining .DEFAULT with no deps or commands clears its commands.
  521.  
  522. * New default implicit rules for .S (cpp, then as), and .sh (copy and make
  523. executable).  All default implicit rules that use cpp (even indirectly), use
  524. $(CPPFLAGS).
  525.  
  526. Version 3.29
  527.  
  528. * Giving the -j option with no arguments gives you infinite jobs.
  529.  
  530. Version 3.28
  531.  
  532. * New option: "-l LOAD" says not to start any new jobs while others are
  533. running if the load average is not below LOAD (a floating-point number).
  534.  
  535. * There is support in place for implementations of remote command execution
  536. in Make.  See the file remote.c.
  537.  
  538. Version 3.26
  539.  
  540. * No more than 10 directories will be kept open at once.
  541. (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
  542.  
  543. Version 3.25
  544.  
  545. * Archive files will have their modification times recorded before doing
  546. anything that might change their modification times by updating an archive
  547. member.
  548.  
  549. Version 3.20
  550.  
  551. * The `MAKELEVEL' variable is defined for use by makefiles.
  552.  
  553. Version 3.19
  554.  
  555. * The recursion level indications in error messages are much shorter than
  556. they were in version 3.14.
  557.  
  558. Version 3.18
  559.  
  560. * Leading spaces before directives are ignored (as documented).
  561.  
  562. * Included makefiles can determine the default goal target.
  563. (System V Make does it this way, so we are being compatible).
  564.  
  565. Version 3.14.
  566.  
  567. * Variables that are defaults built into Make will not be put in the
  568. environment for children.  This just saves some environment space and,
  569. except under -e, will be transparent to sub-makes.
  570.  
  571. * Error messages from sub-makes will indicate the level of recursion.
  572.  
  573. * Hopefully some speed-up for large directories due to a change in the
  574. directory hashing scheme.
  575.  
  576. * One child will always get a standard input that is usable.
  577.  
  578. * Default makefiles that don't exist will be remade and read in.
  579.  
  580. Version 3.13.
  581.  
  582. * Count parentheses inside expansion function calls so you can
  583. have nested calls: `$(sort $(foreach x,a b,$(x)))'.
  584.  
  585. Version 3.12.
  586.  
  587. * Several bug fixes, including USG and Sun386i support.
  588.  
  589. * `shell' function to expand shell commands a la `
  590.  
  591. * If the `-d' flag is given, version information will be printed.
  592.  
  593. * The `-c' option has been renamed to `-C' for compatibility with tar.
  594.  
  595. * The `-p' option no longer inhibits other normal operation.
  596.  
  597. * Makefiles will be updated and re-read if necessary.
  598.  
  599. * Can now run several commands at once (parallelism), -j option.
  600.  
  601. * Error messages will contain the level of Make recursion, if any.
  602.  
  603. * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
  604. makefiles are read.
  605.  
  606. * A double-colon rule with no dependencies will always have its commands run.
  607. (This is how both the BSD and System V versions of Make do it.)
  608.  
  609. Version 3.05
  610.  
  611. (Changes from versions 1 through 3.05 were never recorded.  Sorry.)
  612.  
  613. ----------------------------------------------------------------------
  614. Copyright information:
  615.  
  616. Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
  617.  
  618.    Permission is granted to anyone to make or distribute verbatim copies
  619.    of this document as received, in any medium, provided that the
  620.    copyright notice and this permission notice are preserved,
  621.    thus giving the recipient permission to redistribute in turn.
  622.  
  623.    Permission is granted to distribute modified versions
  624.    of this document, or of portions of it,
  625.    under the above conditions, provided also that they
  626.    carry prominent notices stating who last changed them.
  627.  
  628. Local variables:
  629. version-control: never
  630. end:
  631.